DefConst ( 'k_infoSoupName, "PopList:EnRouteN1" );

DefConst ( 'k_ixID,
	{
	structure: 'slot,
	path:      'id,
	type:      'int,
	} );

DefConst ( 'k_tagInfoKind,
	{	
	structure: 'slot,
	path:      'tag,	// 'infoKind,		// '_popSave
	type:      'tags,
	} );

DefConst ( 'k_infoSoupDef,
	{
	name: k_infoSoupName,	// string that identifies this soup to the system

	userName: LocObj ( "EnRoute POP List", 'soupDefs.popInfoName ),

	ownerApp: kAppSymbol,		// application symbol

	ownerAppName: LocObj ( "EnRoute internet POP list", 'soupDefs.popVisibleName ),
			// user-visible name of app that owns this soup

	userDescr: LocObj ( "The EnRoute Internet transport saves POP read mail info here.", 'soupDefs.popDescription ),
			// user-visible string describing soup

	indexes: [		// indexSpecs - default indexes
		k_ixID,
		k_tagInfoKind,
		],
	} );

DefConst ( 'k_RawPOPListItem,
	{
	tag:	nil,
	id:		nil,
	size:	nil,
	UID:	nil,
	} );
